home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1994
/
MacHack 1994.toast
/
MacHack™ 1987-1994
/
MacHack™ '92
/
Hacks ’92
/
Run & Stumpy
/
source
/
rawdrive.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-06-19
|
372 b
|
22 lines
|
[
TEXT/MPS
]
#ifndef rawdrive_h
#define rawdrive_h
#ifndef errorsource_h
#include "errorsource.h"
#endif
class rawdrive: public errorsource
{
private:
short drive;
short driver;
public:
rawdrive( const FSSpec& volume );
OSErr read( long position, void *buffer, uint32& amount );
OSErr write( long position, void *buffer, uint32& amount );
};
#endif rawdrive_h